跳转至

关于 Java 的 Hello world 解析

public static void main(String[] args) {}

static 表示,无需创建这个 class 的实例,即可执行的方法。
因为 main 需要被 jvm 直接执行,所以需要 static 修饰。